博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
Java-三种注释的用法
查看>>
eclipse - Egit - github 翻译
查看>>
如何使用Maven原型模板快速搭建工程
查看>>
Linux 学习笔记
查看>>
MongoDB Nosql 数据库表 Schema 设计要点
查看>>
setInterval注意事项
查看>>
Flex 展开tree全部子节点
查看>>
获取Android获取传感器列表
查看>>
前端开发框架Bootstrap和KnockoutJS
查看>>
ES6新特性概览
查看>>
如何下载oschina源码并打包到maven本地仓库
查看>>
使用maven时出现Failure to transfer 异常的解决办法
查看>>
作业3 :JSP指令与动作熟悉
查看>>
Nginx配置文件nginx.conf
查看>>
第n位数 Nth Digit
查看>>
【原创】RabbitMQ 之 Distributed brokers(翻译)
查看>>
又一堆废话!
查看>>
rmi初步----安全管理器的使用
查看>>
ListView中重写overScrollBy()方法 实现拉出回弹结果
查看>>
ASP.NET MVC 多语言方案
查看>>